home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / HELLO.C < prev    next >
C/C++ Source or Header  |  1996-06-19  |  156b  |  9 lines

  1. #include <stdio.h>
  2. #include "./cgi.h"
  3.  
  4. cgi_main(cgi_info *ci) {
  5.     print_mimeheader("text/html");
  6.     printf("<html>Hello World!</html>");
  7.     return 1;
  8.     }
  9.